#include <cstdlib>
#include <iostream>

using namespace std;


int main()
{
	
	int iVar = 0;
	cout << "Simple C++ Program\n" << endl;
	

	system("PAUSE");
	return 0;

}
